.pc-mode {
  width: 100%;
  color: #333;
  background-color: white;
  position: relative;
  z-index: 100;
}
.pc-mode:hover{background:#fff;}

.pc-mode .pc-menu {
  box-sizing: border-box;
}

.pc-mode .pc-menu .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: static;
  overflow: visible;
}

.pc-mode .pc-menu .logo {
  display: block;
  position: relative;
}

.pc-mode .pc-menu .logo img {
  max-width: 100%;
  height: auto;
}

.pc-mode .pc-menu .logo .white-logo {
  display: none;
}

.pc-mode .pc-menu .logo .db-logo {
  display: block;
}

.pc-mode .pc-menu .navigator {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.pc-mode .pc-menu .navigator .menus {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.pc-mode .pc-menu .navigator .menus .menu {
  position: relative;
}

.pc-mode .pc-menu .navigator .menus .menu .link {
  white-space: nowrap;
  font-size: 16px;
  color: currentColor;
  height: 110px;
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 0 8px;
  position: relative;
  overflow: hidden;
}

.pc-mode .pc-menu .navigator .menus .menu .link:after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) scaleX(0);
  background-color: #149a52;
  transition: transform 500ms ease;
}

.pc-mode .pc-menu .navigator .menus .menu:hover .link:after {
  transform: translateX(-50%) scaleX(1);
}

.pc-mode .pc-menu .navigator .menus .menu:hover .subNav {
  display: block;
}

.pc-mode .pc-menu .navigator .menus .subNav {
  position: absolute;
  left: 50%;
  top: 110px;
  color: #333;
  display: none;
  transform: translateX(-50%);
}

.pc-mode .pc-menu .navigator .menus .subNav .sub-nav-cont {
  position: relative;
}

.pc-mode .pc-menu .navigator .menus .subNav .sub-nav-cont .sub-nav-list {
  display: flex;
  align-items: center;
}

.pc-mode .pc-menu .navigator .menus .subNav .sub-nav-cont .sub-nav-item {
  float: left;
  line-height: 60px;
  white-space: nowrap;
  cursor: pointer;
  font-size: 16px;
}

.pc-mode .pc-menu .navigator .menus .subNav .sub-nav-cont .sub-nav-item:hover {
  color: #14a153;
}

.pc-mode .pc-menu .navigator .menus .subNav .sub-nav-cont .sub-nav-item + .sub-nav-item {
  margin-left: 20px;
}

.pc-mode .pc-menu .navigator .menus .subNav:before {
  content: "";
  position: absolute;
  width: 200vw;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.8);
  height: 100%;
}

.pc-mode .pc-menu .navigator .menus .menu:last-child .subNav {
  right: 0;
  left: initial;
  transform: none;
}

.pc-mode .pc-menu .right-field {
  display: flex;
  align-items: center;
}

.pc-mode .pc-menu .right-field .search {
  width: 30px;
  height: 30px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../image/search.png) no-repeat center center #fea101;
  background-size: 45%;
  margin-right: 10px;
  cursor: pointer;
  position: relative;
}

.pc-mode .pc-menu .right-field .search .field {
  position: absolute;
  width: 185px;
  height: 56px;
  top: 100%;
  overflow: hidden;
  pointer-events: none;
}

.pc-mode .pc-menu .right-field .search .field input {
  appearance: none;
  color: #fff;
  background: none;
  border: none;
  outline: none;
  display: block;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 0 15px;
  background: rgba(0, 0, 0, 0.6);
  transform: translateY(-100%);
  transition: transform 150ms ease;
}

.pc-mode .pc-menu .right-field .search:hover .field {
  pointer-events: all;
}

.pc-mode .pc-menu .right-field .search:hover .field input {
  transform: translateY(0);
}

.pc-mode .pc-menu .right-field .group-web {
  width: 52px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #fff;
  background-color: #fea101;
  border-radius: 22px;
}

.pc-mode:hover {
  background-color: white;
  color: #333;
}

.pc-mode:hover .pc-menu .logo .white-logo {
  display: none;
}

.pc-mode:hover .pc-menu .logo .db-logo {
  display: block;
}

.index-top-nav .pc-mode {
  position: absolute;
  top: 0;
  z-index: 10;
  color: #fff;
  background-color: rgba(255, 255, 255, 0);
  transition: all 0.5s ease;
}




.index-top-nav .pc-mode .pc-menu .logo .white-logo {
  display: block;
}

.index-top-nav .pc-mode .pc-menu .logo .db-logo {
  display: none;
}

.index-top-nav .pc-mode:hover{ background-color:#fff!important; color: #000; }

.index-top-nav .pc-mode:hover .pc-menu .logo .white-logo{  display: none;}

.index-top-nav .pc-mode:hover .pc-menu .logo .db-logo{  display: block;}


.icon-search {
  background: url(../image/search_g.png) no-repeat center center;
}
